From d23e1274303c54b3d7fc8de77eea37bb8fdaeaa3 Mon Sep 17 00:00:00 2001 From: real-zephex Date: Sun, 31 Mar 2024 17:32:48 +0530 Subject: fixes: minor css modifications, added basic information about the last read manga chapter (don't expect much out of it) --- src/app/manga/[title]/[id]/info.module.css | 36 +++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 11 deletions(-) (limited to 'src/app/manga/[title]/[id]/info.module.css') diff --git a/src/app/manga/[title]/[id]/info.module.css b/src/app/manga/[title]/[id]/info.module.css index d9d3d06..a36658a 100644 --- a/src/app/manga/[title]/[id]/info.module.css +++ b/src/app/manga/[title]/[id]/info.module.css @@ -16,7 +16,7 @@ .TitleContainer p { font-family: "Quicksand"; font-size: 40px; - font-weight: 900; + font-weight: 1000; } .TitleContainer img { @@ -65,7 +65,7 @@ } .Character::-webkit-scrollbar-thumb { - background-color: #B799FF; + background-color: #31363F; border-radius: 5px; } @@ -84,11 +84,25 @@ } /* Chapters Buttons */ -.ChapterContainer { - width: 100%; + +.Chapters { + display: flex; + align-items: center; + justify-content: space-between; + max-width: 90%; margin: 20px auto; +} + +.ChapterTitle { + color: white; + font-family: "Kanit"; + font-size: 32px; +} + +.ChapterContainer { + width: 50%; text-align: center; - height: 400px; + height: 300px; overflow-y: auto; } @@ -97,8 +111,7 @@ } .ChapterContainer::-webkit-scrollbar-thumb { - /* background-color: #949494; */ - background-color: #B799FF; + background-color: #31363F; border-radius: 5px; } @@ -111,10 +124,10 @@ font-size: 16px; border: none; outline: none; - font-family: "Lato"; - background-color: #f8f6e3dc; + color: white; + background-color: #3d3d3d; cursor: pointer; - transition: transform 0.2s linear; + transition: background-color 0.2s linear; } .ChapterContainer button p { @@ -123,7 +136,8 @@ } .ChapterContainer button:hover { - background-color: #97E7E1; + background-color: #1f1f1f; + transition: background-color 0.2s linear } .ChapterContainer button:focus { -- cgit v1.2.3